Function: flowsTo(domElementOrCSSSelector, target-domElementOrCSSSelector) Description: Sets up an accessible flow-to relationship from one element to another. Returns: Original Object, or $A object if chained. Note: The flowsTo() function will automatically configure a valid ARIA flowTo relationship, even if the target element does not include an id. It will automatically manage the aria-controls and aria-flowto attributes accordingly. For an example of this functionality in action, view the Footnote module template. Example: $A.flowsTo(domElement, domElementToFlowTo); $A.flowsTo("#skip-link-id", "#footnote-id"); // Or the same using chaining $A(domElement).flowsTo(domElementToFlowTo); $A("#skip-link-id").flowsTo("#footnote-id");